TUTORIAL 1 - BREASTS RENDERING ON ARMOR WITH CUSTOM MODEL
If your custom or vanilla armor uses custom models instead of the one used by vanilla, follow this steps:

1. Open your chestplate attachable files
2. Copy and paste to your armor "geometry":
	"player_gender_reloaded.breasts_armor": "geometry.player_gender_reloaded.custom.breasts_armor"
3. Copy and paste to your armor "render_controllers":
	"controller.render.player_gender_reloaded.breasts.custom_armor"

TUTORIAL 2 - BREASTS PHYSICS STRENGTH AND VISIBILITY
To enable or modify the strength of breasts physics and make "Hide breasts while wearing armor" works on your custom armor, follow this steps:

1. Open your chestplate attachable files
2. Copy and paste (or replace) to "scripts":
	"parent_setup": "{ v.chest_layer_visible = 0.0; } + { v.player_gender_reloaded_breasts_armor_physics_strength = 0.0; } + { v.player_gender_reloaded_breasts_in_armor = 1.0; };"
3. Modify the value of "v.player_gender_reloaded_breasts_armor_physics_strength" to your liking (min: 0.0, max: 1.0), default is set to 0.0 (No Physics)
4. Modify the value of "v.player_gender_reloaded_breasts_in_armor" either to 0.0 or 1.0, if set to 0.0 the breasts model will not be hidden when "Hide breasts while wearing armor" is enabled, default is set to 1.0 (True)

In case you need reference, here is the list of the value used in vanilla armor
"v.player_gender_reloaded_breasts_armor_physics_strength":
- 0.0 (0%): used by Copper, Iron, Diamond, and Netherite Armor
- 0.15 (15%): used by Golden Armor
- 0.5 (50%): used by Chainmail Armor
- 0.7 (70%): used by Leather Armor
- 1.0 (100%): used by Elytra

"v.player_gender_reloaded_breasts_in_armor":
- 0.0 (False): used by Elytra
- 1.0 (True): used by all vanilla armors